* lisp.h (malloc, realloc): Declare these to return void *, to
authorJim Blandy <jimb@redhat.com>
Tue, 18 May 1993 22:44:27 +0000 (22:44 +0000)
committerJim Blandy <jimb@redhat.com>
Tue, 18 May 1993 22:44:27 +0000 (22:44 +0000)
avoid conflicts with ANSI header files.

src/lisp.h

index a13db81a776eab5ef084eadbf23075d5f8e786e7..1fdcae2e62864ba6c215f92b91ad87080e197dc2 100644 (file)
@@ -1292,7 +1292,8 @@ extern int immediate_quit;            /* Nonzero means ^G can quit instantly */
 
 extern void debugger ();
 
-extern char *malloc (), *realloc (), *getenv (), *ctime (), *getwd ();
+extern void *malloc (), *realloc ();
+extern char *getenv (), *ctime (), *getwd ();
 extern long *xmalloc (), *xrealloc ();
 extern void xfree ();